events
Openscapes events: https://openscapes.org/events
Distill tips
From https://themockup.blog/posts/2020-08-01-building-a-blog-with-distill/
writing text and code
create_post(
title, # mandatory
author = "auto",
slug = "auto", # generates a website slug (URL)
date_prefix = TRUE, # adds date for sorting
draft = FALSE,
edit = interactive()
)
install.packages("devtools")
devtools::install_github("rstudio/rmarkdown")
devtools::install_github("yihui/knitr")
devtools::install_github("rstudio/distill")